home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Format 1994 October
/
Macformat17.cdr
/
Shareware City
/
Sound
/
juno-librarian-108
/
JUNO Librarian 1.0.8
/
Sample Scripts
/
31 Change VCA ENV⁄GATE
< prev
next >
Wrap
Text File
|
1994-07-11
|
386b
|
17 lines
tell application "JUNO Librarian"
activate -- if needed
set x to Parameter 17 of Window "Sample"
set y to (round (x ÷ 4) rounding down)
set y to y * 4
set z to x - y -- ENV, PWM switch
set y to (round (y ÷ 8) rounding down)
set y to y * 8
set x to y + z
-- select 1 of 2
-- set x to x + 0 -- ENV
set x to x + 4 -- GATE
copy x to Parameter 17 of Window "Sample"
end tell